home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / sync / Sync_SlowLock.c < prev    next >
C/C++ Source or Header  |  1989-02-19  |  2KB  |  58 lines

  1. /* 
  2.  * Sync_SlowLock.c --
  3.  *
  4.  *    Source code for the Sync_SlowLock library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: Sync_SlowLock.c,v 1.3 88/07/25 11:12:00 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include <status.h>
  22. #include <stdio.h>
  23. #include <sync.h>
  24.  
  25.  
  26. /*
  27.  * ----------------------------------------------------------------------------
  28.  *
  29.  * Sync_SlowLock --
  30.  *
  31.  *      Aquire a lock.  This is the second level lock routine.  Sync_GetLock
  32.  *    has already been called and it discovered that the lock is already
  33.  *    held by someone else.  This routine performs the system call to
  34.  *    go into the kernel and go through the slower locking procedure.
  35.  *
  36.  * Results:
  37.  *    SUCCESS.
  38.  *
  39.  * Side effects:
  40.  *      Lock aquired on exit.
  41.  *    
  42.  * ----------------------------------------------------------------------------
  43.  */
  44. ReturnStatus
  45. Sync_SlowLock(lockPtr)
  46.     Sync_Lock    *lockPtr;
  47. {
  48.     ReturnStatus    status;
  49.  
  50.     do {
  51.     status = Sync_SlowLockStub(lockPtr);
  52.     } while (status == GEN_ABORTED_BY_SIGNAL);
  53.     if (status != SUCCESS) {
  54.     panic("Sync_SlowLock: Could not aquire lock\n");
  55.     }
  56.     return(SUCCESS);
  57. }
  58.